home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xwall / Xsetup.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1995-06-20  |  463b  |  16 lines

  1. #!/bin/sh
  2. # Give root the keys to the DISPLAY
  3. xauth list | sed "s/.*:[^ ]*/add $DISPLAY/" | xauth -f /.Xauthority
  4.  
  5. # if the DISPLAY does not contain a host name,
  6. # also give the keys to the tcp/ip domain DISPLAY name.
  7. host=`echo $DISPLAY | sed "s/:.*/X/"`
  8. if [ $host = "X" ]
  9. then
  10.     xauth list | sed "s/.*:[^ ]*/add `hostname`$DISPLAY/" | xauth -f /.Xauthority
  11. fi
  12.  
  13. #start clients
  14. xconsole -geometry 480x130-0-0 -daemon -notify -verbose -fn fixed -exitOnFail
  15. xwalld
  16.